home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
22
/
4
/
DISK2247.ZIP
/
CBASE101.ZIP
/
BLKIO112.ZIP
/
BOOL.H
< prev
next >
Wrap
Text File
|
1990-06-20
|
322b
|
17 lines
/* Copyright (c) 1989 Citadel */
/* All Rights Reserved */
/* #ident "@(#)bool.h 1.4 - 90/06/20" */
/* boolean definitions */
#ifndef BOOL_H /* prevent multiple includes */
#define BOOL_H
typedef unsigned char bool;
#define TRUE ((bool)1)
#define FALSE ((bool)0)
#endif /* #ifndef BOOL_H */